home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / Talking Telnet / source / config / LinkedList.h < prev    next >
Encoding:
Text File  |  1996-06-22  |  118 b   |  9 lines  |  [TEXT/CWIE]

  1. //LinkedList.h
  2.  
  3. typedef struct LinkedListNode {
  4.     StringHandle name;
  5.     struct LinkedListNode *next;
  6. } LinkedListNode;
  7.  
  8.  
  9.